Returns True or False to indicate if errors are displayed in the Errors pane during playback and in run reports.
Syntax
IsIgnoringErrors()
Return value
| Value | Description |
|---|---|
| True | Errors are ignored. |
| False | Errors are not ignored. |
Example
If IsIgnoringErrors = True Then
PrintLn("Ignoring errors")
Else
PrintLn("Not ignoring errors")
End If